home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-03-09 | 2.3 KB | 84 lines |
- # Makefile for Jade version 3
- # Copyright (C) 1993, 1994 John Harper <jsh@ukc.ac.uk>
-
- # Jade is free software; you can redistribute it and/or modify it
- # under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2, or (at your option)
- # any later version.
-
- # Jade is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
-
- # You should have received a copy of the GNU General Public License
- # along with Jade; see the file COPYING. If not, write to
- # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
- VERSION = 3.2
-
- SHELL = /bin/sh
- INSTALL = install
- INSTALL_PROG = $(INSTALL)
- INSTALL_DATA = $(INSTALL) -m 0644
- CPP = /lib/cpp
-
- # Default directory to install in. Override the `prefix' arg on the command
- # line if you want.
- prefix = /usr/local
- exec_prefix = $(prefix)
- bindir = $(exec_prefix)/bin
- infodir = $(prefix)/info
- datadir = $(prefix)/lib
- jadedir = $(datadir)/jade/$(VERSION)
- lispdir = $(jadedir)/lisp
-
- all : src/Makefile
- (cd src && $(MAKE))
-
- src/Makefile : src/Makefile.in src/config.h
- (cd src \
- && $(CPP) $(CPPFLAGS) -D_JADE_DIR="\\\"$(jadedir)/\\\"" Makefile.in Makefile \
- || rm -f Makefile)
-
- install : all installdirs
- $(INSTALL_PROG) src/jade $(bindir)/jade
- $(INSTALL_PROG) src/jadeclient $(bindir)/jadeclient
- (cd man && $(MAKE) install.info 'INSTALL_DATA=$(INSTALL_DATA)' \
- infodir=$(infodir))
- (cd lisp && $(MAKE) install lispdir=$(lispdir) bindir=$(bindir) \
- 'INSTALL_DATA=$(INSTALL_DATA)')
-
- installdirs :
- $(SHELL) mkinstalldirs $(jadedir) $(bindir) $(infodir) $(lispdir)
-
- uninstall :
- rm -f $(bindir)/jade $(bindir)/jadeclient
- (cd man && $(MAKE) uninstall.info infodir=$(infodir))
- (cd lisp && $(MAKE) uninstall lispdir=$(lispdir))
- rm -rf $(jadedir)
-
- lispfiles :
- (cd lisp && $(MAKE) lisp BINDIR=src)
-
- tar :
- tar -zcT FILES -f jade.tar.gz
-
- distfiles : all
- (cd dist && $(MAKE) VERSION=$(VERSION))
-
- nobak :
- rm -f *~ */*~
-
- clean :
- rm -f *~
- (cd src && $(MAKE) clean)
- (cd man && $(MAKE) clean)
- (cd lisp && $(MAKE) clean)
-
- realclean :
- rm -f *~
- (cd src && $(MAKE) realclean)
- (cd man && $(MAKE) realclean)
- (cd lisp && $(MAKE) realclean)
-